.featured-section{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    overflow: hidden;
}

.featured-container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: 1300px;
    gap: 35px;
}

.featured-header h2{
    font-size: 38px;
}

.featured-header p{
    font-size: 19px;
    color: #000000b4;
}

.categories-div{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.categories{
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
    width: 100%;
    padding: 5px 45px;
}

.categories h3{
    font-size: 15px;
    font-weight: normal;
    background-color: #6365f11a;
    padding: 10px 18px;
    border: 1px #6366F1 solid;
    border-radius: 50px;
    color: #6366F1;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

.categories h3:hover{
    background-color: #6366F1;
    color: #ffffff;
}

.arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #6365f11a;
    padding: 4px 8px;
    border: 1px #6366F1 solid;
    border-radius: 50px;
    color: #6366F1;
    z-index: 5;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.arrow:hover{
    background-color: #6366f133;
}

.arrow-right{
    right: 0;
}

.arrow-left{
    left: 0;
}

.gred-category{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(90deg, #f8f8f8 0%, rgba(248, 248, 248, 0) 10%, rgba(248, 248, 248, 0) 90%, #f8f8f8 100%);
}

.featured-products{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    gap: 20px;
}

.featured-product-div{
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-product-div:hover{
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.green-stock p{
    color: #2cd626;
}

.low-stock p{
    color: #d42828;
}

.avaliable-product-div p{
    font-size: 14px;
    font-weight: normal;
    white-space: nowrap;
}

.category-product-div{
    position: absolute;
    background-color: #6365f12d;
    padding: 8px 13px;
    border-radius: 50px;
    cursor: pointer;
    right: 40px;
    border: 1px #6365f1 solid;
    top: 25px;
}

.category-product-div p{
    color: #6365f1;
}

.product-img-div{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-product-div h3{
    font-size: 30px;
}

.brand-product-div p{
    color: #000000e7;
    font-weight: 500;
}

.description-product-div p{
    color: #0000008c;
    font-size: 15px;
    margin-bottom: 6px;
}

.price-product-div{
    font-size: 27px;
    font-weight: bold;
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.counter-div{
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 18px;
}

.product-button{
    padding: 17px 20px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.minus-botton, .plus-botton{
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.minus-botton:hover, .plus-botton:hover{
    background-color: #6366F1;
    color: #ffffff;
    transform: scale(1.1);
}

.minus-botton:active, .plus-botton:active{
    transform: scale(0.95);
}